home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_eof.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  40 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''test script for a few new invalid token catches'''
  5. import os
  6. import unittest
  7. from test import test_support
  8.  
  9. class EOFTestCase(unittest.TestCase):
  10.     
  11.     def test_EOFC(self):
  12.         
  13.         try:
  14.             eval("'this is a test            ")
  15.         except SyntaxError:
  16.             msg = None
  17.             self.assertEqual(str(msg), 'EOL while scanning single-quoted string (line 1)')
  18.  
  19.         raise test_support.TestFailed
  20.  
  21.     
  22.     def test_EOFS(self):
  23.         
  24.         try:
  25.             eval("'''this is a test")
  26.         except SyntaxError:
  27.             msg = None
  28.             self.assertEqual(str(msg), 'EOF while scanning triple-quoted string (line 1)')
  29.  
  30.         raise test_support.TestFailed
  31.  
  32.  
  33.  
  34. def test_main():
  35.     test_support.run_unittest(EOFTestCase)
  36.  
  37. if __name__ == '__main__':
  38.     test_main()
  39.  
  40.